home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutord.EXE / 73B.C < prev    next >
C/C++ Source or Header  |  1990-09-09  |  279b  |  16 lines

  1. main()
  2. {
  3.     static    struct    info{
  4.         char    *name;
  5.         int    employnum;
  6.     } people[] = {
  7.         "John", 111,
  8.         "Johna", 222,
  9.         "Johnx", 333,
  10.         "Johnny", 444,
  11.         "", 0
  12.     };
  13.     printf("%s %d\n",people[0].name,people[0].employnum);
  14.     /* try printing out the whole info data structure */
  15. }
  16.